home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1980-02-03 | 598 b | 27 lines |
- Load Iff "!intro:intro/alex1.iff",0
-
- Reserve As Work 16,80*64/2
- COUNT=0
-
- For Y=0 To 127 Step 2
- For X=0 To 159 Step 2*2
- A1=Point(X,Y) and %1111
- A2=Point(X+1,Y) and %1111
- A3=Point(X,Y+1) and %1111
- A4=Point(X+1,Y+1) and %1111
- A=(A1+A2+A3+A4)/4.0+0.5
-
- B1=Point(X+2,Y) and %1111
- B2=Point(X+1+2,Y) and %1111
- B3=Point(X+2,Y+1) and %1111
- B4=Point(X+1+2,Y+1) and %1111
- B=(B1+B2+B3+B4)/4.0+0.5
-
- BYTE=A*16+B
-
- Poke Start(16)+COUNT,BYTE
- Add COUNT,1
- Next
- Next
-
- Bsave "!intro:intro/Alex1.4bit",Start(16) To Start(16)+Length(16)